使用Python 写一个最简单的WebServer import socket def handle_request(client): buf = client.recv(1024) client.send("HTTP/1.1 200 ...